home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / wais / ir / wutil.h < prev    next >
C/C++ Source or Header  |  1995-05-09  |  1KB  |  45 lines

  1. /*--------------------------------------------------------------------------
  2.  * ABSTRACT:    wutil.h -- WAIS TOOLS header file
  3.  *
  4.  * AUTHOR
  5.  *   M. Tracy Shen
  6.  *
  7.  *
  8.  *------------------------------------------------------------------------*/
  9. #ifndef _H_WAIS_util_
  10. #define _H_WAIS_util_
  11.  
  12. #include "cdialect.h"
  13.  
  14. #include "cutil.h"
  15.  
  16. #ifdef __cplusplus
  17. /* declare these as C style functions */
  18. extern "C"
  19.     {
  20. #endif /* def __cplusplus */
  21.  
  22. void twais_format_req_apdu _AP(( boolean use_template, char* apdu_buff, long* len));
  23. void twais_dsply_rsp_apdu _AP(( char* rsp_buff, long rsp_len));
  24. void twais_free_apdu _AP((char* apdu_buff));
  25.  
  26. long twais_format_init_apdu _AP(( boolean use_template, char* apdu_buff));
  27. long twais_format_typ3_srch_apdu _AP(( boolean use_template, char* apdu_buff));
  28. long twais_format_typ1_srch_apdu _AP(( boolean use_template, char* apdu_buff));
  29.  
  30. void twais_dsply_init_rsp_apdu _AP(( char* buffer));
  31. void twais_dsply_init_apdu _AP(( char* buffer));
  32. void twais_dsply_srch_rsp_apdu _AP(( char* buffer));
  33. void twais_dsply_srch_apdu _AP(( char* buffer));
  34.  
  35. void twais_tmplt_init_apdu _AP((char* buff, long* buff_len));
  36. void twais_tmplt_init_rsp_apdu _AP((char* buff, long* buff_len));
  37. void twais_tmplt_typ1_srch_apdu _AP(( char* buff, long* buff_len));
  38. void twais_tmplt_typ3_srch_rsp_apdu _AP(( char* buff, long* buff_len));
  39.  
  40. #endif
  41.  
  42. #ifdef __cplusplus
  43.     }
  44. #endif /* def __cplusplus */
  45.